reflect.funcType.outCount (field)

7 uses

	reflect (current package)
		type.go#L389: 	outCount uint16 // top bit is set if last input parameter is ...
		type.go#L944: 	return tt.outCount&(1<<15) != 0
		type.go#L1072: 	outCount := t.outCount & (1<<15 - 1)
		type.go#L1687: 		if t.outCount != v.outCount || t.inCount != v.inCount {
		type.go#L2070: 	ft.outCount = uint16(len(out))
		type.go#L2072: 		ft.outCount |= 1 << 15